Add activity feed API#1
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| @@ -0,0 +1,30 @@ | |||
| const express = require('express'); | |||
There was a problem hiding this comment.
Declare express dependency for new server
The new feed endpoint requires express, but the repository does not declare or install that dependency—there is no package.json anywhere and running node graphite-demo/server.js fails immediately with Cannot find module 'express'. Without adding the dependency (or install instructions), the API cannot start, so the new feature is unusable.
Useful? React with 👍 / 👎.

Graphite example